don't use make in cmake instructions (closes #236)
authorSteven G. Johnson <stevenj@alum.mit.edu>
Sat, 16 Apr 2022 20:33:27 +0000 (16:33 -0400)
committerGitHub <noreply@github.com>
Sat, 16 Apr 2022 20:33:27 +0000 (16:33 -0400)
README.md

index b5935d9bb0b956b281374d0cc5eddc25e4f1bf39..9c53df24451551858e3f1a9c9010304a91d3a3fd 100644 (file)
--- a/README.md
+++ b/README.md
@@ -38,9 +38,8 @@ For compilation of the C library, run `make`.  You can also install the library
 Alternatively, you can compile with `cmake`, e.g. by
 ```sh
 mkdir build
-cd build
-cmake ..
-make
+cmake -S . -B build
+cmake --build build
 ```
 
 ### Using other compilers